body {
    --lesson-color-body-bg: #FFFFFF;
    --lesson-color-block-bg: #F3F5FB;
    --lesson-color-header-bg: #8A1A2F;
    --lesson-color-accent: #8A1A2F;
    --lesson-color-header-btn-bg: #fff;
    --lesson-font-family: 'Onest', sans-serif;
    --lesson-color-text: #414141;
    --font-family: 'Onest', sans-serif;
    --lesson-url-btn-prev: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 6.5L2 6.5M2 6.5L5 9.5M2 6.5L5 3.5' stroke='white' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    --lesson-url-btn-next: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6.5H10M10 6.5L7 3.5M10 6.5L7 9.5' stroke='white' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background: var(--lesson-color-body-bg);
}
/*.gc-main-content.with-left-menu .container {
    width: 100%;
    max-width: 1200px;
    margin: auto !important;
}*/
.f-header.f-header-20 {
    color: var(--lesson-color-header-bg)
}
.lesson-header-block a {
    text-decoration: none;
    font-family: var(--lesson-font-family);
    font-weight: 500;
}
a:hover, a:focus {
    color: var(--lesson-color-text);
}
.row {
    margin: 0;    
}

/* header */
.lesson-header-block {
    background: var(--lesson-color-header-bg) !important;
    border-radius: 16px;
    border: 1px solid var(--lesson-color-accent);
    overflow: hidden;
    padding: 0px !important;
    margin-bottom: 24px !important;
    display: flex;
    flex-direction: column;
    position: relative;
}
.row.header-view > div {
    padding: 16px !important;
    padding-top: 72px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 130px;
}
.lesson-title-value {
    font-family: var(--lesson-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 99.33%;
    color: #f6f4ee;
    text-align: center;
    margin-top: auto;
}
.lesson-description-value {
    font-family: var(--lesson-font-family);
}
.f-header.f-header.f-lesson-header-1 {
    margin-bottom: 0;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: #000000;
}
.lesson-navigation {
    height: 62px;
    padding: 0px !important;

}
.lesson-navigation > table > tbody > tr {
    display: flex;
    height: 62px;
    justify-content: space-between;
    align-items: flex-end;
}

.text-center.hidden-xs > span {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--lesson-color-body-bg);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--lesson-font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: var(--lesson-color-text);
}

.text-center.hidden-xs {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}
.text-center.hidden-xs div {
    font-family: var(--lesson-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: var(--lesson-color-body-bg);
}
.lesson-navigation > table > tbody > tr > td .hidden-xs {
    display: none;
}
.lesson-navigation > table > tbody > tr > td:first-child {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0px !important;
    border-radius: 0px 8px 0px 0px;
    overflow: hidden;
}
.lesson-navigation > table > tbody > tr > td:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0px !important;
    border-radius: 8px 0px 0px 0px;
    overflow: hidden;
}
.lesson-navigation > table > tbody > tr > td a {
    width: 100%;
    height: 33px;
    background: var(--lesson-color-header-btn-bg) no-repeat center;
    flex-shrink: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lesson-color-header-bg);
}
.lesson-navigation > table > tbody > tr > td:first-child a::before {
    background: no-repeat center;
    background-image: var(--lesson-url-btn-prev);
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
}
.lesson-navigation > table > tbody > tr > td:last-child a::after {
    background: no-repeat center;
    background-image: var(--lesson-url-btn-next);
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 8px;    
}
@media(max-width: 768px) {
    .lesson-navigation > table > tbody > tr > td:first-child {
        width: 100%;
        border-right: 1px solid var(--lesson-color-body-bg);
        border-radius: 0px;
    }
    .lesson-navigation > table > tbody > tr > td:last-child {
        width: 100%;
        border-left: 1px solid var(--lesson-color-body-bg);
        border-radius: 0px;
    }
}
@media(max-width: 480px) {
    .lesson-navigation > table > tbody > tr > td a {
        font-size: 12px;
    }
}

/* содержание урока */
.f-header p, .f-text p, .fields .field-label, .lt-form label, textarea.form-control, {
    font-family: var(--lesson-font-family);
}
.btn.f-btn.button-md {
    border-radius: 4px;
    border: none;
    font-family: var(--lesson-font-family);
    font-style: normal;
    font-weight: 500;
    background: var(--lesson-color-header-bg) !important;
    color: var(--lesson-color-header-btn-bg);
}
.vhi-iframe, .videoWrapper iframe {
    border-radius: 16px;
}
.lt-separator hr {
    margin-top: 40px;
    margin-bottom: 20px;
    border: 0;
    border-top: 4px double #bbb3ff;
}

.lt-separator hr {
    margin: 30px auto !important;
    padding: 0;
    width: 95%;
    max-width: 920px !important;
    text-align: center;
    border: none;
    border-top: double #bbb3ff;
    overflow: visible;
}
.lt-separator hr:after {
    content: '';
    display: inline-block;
    position: relative;
    top: 3px;
    transform: translatey(-60%);
    padding: 0 10px;
    background: url('https://fs.getcourse.ru/fileservice/file/download/a/299113/sc/9/h/7170bfd4a2371902c86f099218467be5.png') #fff no-repeat;
    background-size: 70%;
    background-position: center center;
    width: 40px;
    height: 40px;
    margin: 0 10px;
}


.answer-form .btn-link {
    padding: 0;
    color: var(--lesson-color-accent);
}
.user-profile-image {
    border-radius: 50px;
    border: 2px solid #D9D9D9;
}
.self-answers .user-answer {
    border-top: none;
}
.comment-form-wrapper .new-comment-textarea {
    width: 100%;
    border: none;
    min-height: 60px !important;
    padding: 12px;
}

.b-notifications-subscribe .button,
.b-like .button {
    color: var(--lesson-color-text);
    cursor: pointer;
    border-bottom: 1px dotted var(--lesson-color-text);
}
.comment-form-wrapper .new-comment .btn-send {
    background: var(--lesson-color-accent);
    border-radius: 4px;
    border: none;
    font-family: var(--lesson-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--lesson-color-body-bg);
}


.pseudo-link:hover,
.pseudo-link {
    color: var(--lesson-color-text);
}
@media(max-width: 768px) {
    .gc-main-content.with-left-menu .container {
        margin: 0;
    }
}